databas: trf
tabell:  tb_matches
flt:    matches_id int(3) unsigned not null auto_increment
         matches_type varchar(15) not null
         matches_date varchar(20) not null
         matches_time varchar(10) not null
         matches_versus varchar(50) not null
         matches_result varchar(10) not null
tabell:  tb_teams
flt:    matches_id int(3) unsigned not null auto_increment
         teams_team varchar(100) not null

jag har krt:
select * from tb_matches as m inner join tb_teams as t on m.matches_id = t.matches_id
fr att lnka matches_id i tb_matches och tb_teams med varandra.. 